All Questions
9 questions
5votes
1answer
331views
Parse and format date
I have the following code for taking a date in the form of a string yyyy-MM-dd HH:mm:ss (UTC timezone) and turning it into ...
5votes
2answers
3kviews
Java/Kotlin JSON parsing improvement
I consume an API which gives me this type of JSON: ...
4votes
1answer
370views
Android XML parser to parse themes
I used XML to control the theme of an InputMethod for Android. A theme in XML contains the color and the shape of keys. XML file ...
2votes
2answers
4kviews
Parsing a text file of node data into Nodes and Edges
I'm a fairly new developer (well, engineer really, but currently working on a software project). In the Android project I'm working on, I read a node representation of a map into my app and interpret ...
1vote
1answer
464views
Parsing a file for an Android device
I am trying to parse InputEvents of an Android device. Background: For an android device we have a utility getevent ...
4votes
2answers
235views
How can I speed up my RSS feed Android App?
I have a problem with parsing RSS from a PHP page because the app is too slow. This is my parsing code: ...
3votes
4answers
11kviews
Android AsyncTask, HTTP Request and Parsing
I am working on Android applications for last 2 years and about 80% applications I have developed involve web-services consumption followed by some sort of XML or JSON parsing. Initially, when I had ...
4votes
1answer
10kviews
Simplifying HTML parsing
I'm working on an app for my school (not homework, an app that's going to be used by students), that's supposed to display our week schedules. I get the data from a webapp, but it has no API that I ...
8votes
1answer
27kviews
Optimize JSON insertion to SQLite (insert ... on duplicate key ignore)
In current task, I'm refactoring the code of converting JSON file into SQLite database on Android device. Code compliant with Java 6. As a benchmark, grabbing the code from remote server takes ...